home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clib / displaymodule_protos.h next >
C/C++ Source or Header  |  1999-05-25  |  595b  |  22 lines

  1. #ifndef CLIB_DISPLAYMODULE_PROTOS_H
  2. #define CLIB_DISPLAYMODULE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: displaymodule_protos.h 2.01 (9.12.98)
  6. **
  7. **    modules libraries common prototypes.
  8. **
  9. */
  10.  
  11. #include <exec/types.h>
  12. #include <utility/tagitem.h>
  13.  
  14. void        SetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  15. void        GetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  16. BOOL        SetupModule(struct WildApp *wapp,struct TagItem *tags);
  17. void        CloseModule(struct WildApp *wapp);
  18. BOOL        RefreshModule(struct WildApp *wapp);
  19. void        DISDisplayFrame(struct WildApp *wapp);
  20. void         DISInitFrame(struct WildApp *wapp);
  21.  
  22. #endc